home *** CD-ROM | disk | FTP | other *** search
- Multiplied Intelligence Personnel Simulator (M.I.P.S.)
- Copyright 1987, Michael Reed.
-
- ╔════════════════════╗
- ║ FILE ACCESS SYNTAX ║
- ╚════════════════════╝
-
-
- Adding a natural language interface to your databases can make then
- easier to access and understand. ASCII text files as well as
- 8-bit and 16-bit binary data files can be accessed.
- ─────────────────────────────────────────────────────
-
-
-
-
-
-
-
-
-
-
-
-
- ╔════════════════════╗
- ║ FILE ACCESS SYNTAX ║
- ╚════════════════════╝
-
- [Filename.Ext]
- Displays full contents of an ASCII file.
-
- [Filename.Ext
- Make file available for reading
- (Open file)
-
- Location,Length]
- Read file from Location for
- Length characters then close file
-
- Location,Length}
- Read file from Location for
- Length characters and leave file open
- for later reads
-
-
-
-
- ╔════════════════════╗
- ║ FILE ACCESS SYNTAX ║
- ╚════════════════════╝
-
- Length]
- Read file from current file position
- for Length characters then close file
-
-
- Length}
- Read file from current file position
- for Length characters then leave file
- open for later reads
-
-
-
-
-
-
-
-
-
-
-
- ╔════════════════════╗
- ║ FILE ACCESS SYNTAX ║
- ╚════════════════════╝
-
- If Length = 1, then file data is displayed
- as a 8-bit number (range 0 thru 255).
-
- If Length = 2, then file data is displayed
- as a 16-bit number (range 0 thru 65535).
-
- If Length > 2, then file data is displayed
- as ASCII characters.
-
- NOTE:
- Only one open file at a time. Always
- remember to close a file that was
- opened before leaving the system.
-
-
-